home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol A-4 / (Vol A-4) Vol. A4.iso / Games / bratz-estilista.swf / scripts / DefineButton2_881 / BUTTONCONDACTION on(release).as
Text File  |  2008-03-17  |  691b  |  25 lines

  1. on(release){
  2.    var pj = new PrintJob();
  3.    pj.start();
  4.    if(pj.orientation == "portrait")
  5.    {
  6.       EndPrint._rotation = 90;
  7.       EndPrint._xscale = 130;
  8.       EndPrint._yscale = EndPrint._xscale;
  9.       pj.addPage(EndPrint,{xMin:-60,xMax:800,yMin:0,yMax:420});
  10.       EndPrint._xscale = 100;
  11.       EndPrint._yscale = EndPrint._xscale;
  12.       EndPrint._rotation = 0;
  13.    }
  14.    else if(pj.orientation == "landscape")
  15.    {
  16.       EndPrint._xscale = 130;
  17.       EndPrint._yscale = EndPrint._xscale;
  18.       pj.addPage(EndPrint,{xMin:-60,xMax:800,yMin:-25,yMax:420});
  19.       EndPrint._xscale = 100;
  20.       EndPrint._yscale = EndPrint._xscale;
  21.    }
  22.    pj.send();
  23.    delete pj;
  24. }
  25.